home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / WV Acrobat Reader 4.0.xpl < prev    next >
Text File  |  2002-04-06  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Other Programs\Adobe\Acrobat Reader 4.0\"
  5. "NAME"="Recent files"
  6. "VERSION"="1.00"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Clear recent files list"
  9. "DESCRIPTION 1"="If you don't want other people to see the files you have open, click on the button."
  10. "DESCRIPTION 2"="NOTE: this plug-in works with all 4.XX versions ..."
  11. "DESCRIPTION 3"="Acrobat Reader is available at http://www.adobe.com."
  12. "AUTHOR"="FORMATMAN"
  13. "CONTACTURL"="http://formatland.free.fr/"
  14. "COPYRIGHT"="Copyright ⌐ Formatman"
  15. "COMMENT 1"="For more informations, go to http://www.xsetup.net"
  16. "COMMENT 2"="Created by VORMELKER Werner"
  17. "COMMENT 3"="http://formatland.free.fr/"
  18. "COMMENT 4"="formatman@wanadoo.fr"
  19.  
  20. sP="HKCU\Software\Adobe\Acrobat Reader\4.0\AdobeViewer\"
  21.  
  22.  
  23. Sub Plugin_Initialize 
  24.   If RegPathExists(sP)=false then
  25.      Disable()
  26.   end if 
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  if ElementIndex=1 then     
  34.     for l=1 to 30
  35.         s="avpRecentFile" & l
  36.         v=RegReadValue(sP & s)
  37.         
  38.         If IsEmpty(v)=false then
  39.            Call RegDeleteValue(sP & S)
  40.         end if
  41.     Next
  42.  
  43.     Call MsgInformation("List cleared !")
  44.  end if
  45. End Sub
  46.  
  47. Sub Plugin_Terminate 
  48. End Sub
  49.